• ###quick ubuntu/linux primer
    • terminal, ls, cd, mkdir, sudo (apt-get install), path
  • ###quick python demo (matplotlib)
    • ipython notebook, ipython
  • ###emacs overview
    • syntax highlighting, find files, split windows
  • ###git overview
    • git branch, git clone, git init, git branch -b, git checkout, git set remote
  • ###back to python and programming basics
    • arrays
    • hashes
    • strings
    • booleans
    • control flow
      • if statement
    • == operator

In [8]:
a = [1,2,2]
b=["a", "bdf", 33]

In [10]:
b[2]


Out[10]:
33

In [11]:
c = 'ertreetre'

In [13]:
c.capitalize()


Out[13]:
'Ertreetre'

In [17]:
if (1):
    print "hi"


hi

In [21]:
d = {6:2, "b":34}

In [22]:
d


Out[22]:
{6: 2, 'b': 34}

In [24]:
d['b']


Out[24]:
34

In [25]:
user = {"name":'yang',"email":"sdflj@haha"}

In [26]:
user["email"]


Out[26]:
'sdflj@haha'

In [ ]: